os.fileStat.mode (field)

12 uses

	os (current package)
		stat_linux.go#L17: 	fs.mode = FileMode(fs.sys.Mode & 0777)
		stat_linux.go#L20: 		fs.mode |= ModeDevice
		stat_linux.go#L22: 		fs.mode |= ModeDevice | ModeCharDevice
		stat_linux.go#L24: 		fs.mode |= ModeDir
		stat_linux.go#L26: 		fs.mode |= ModeNamedPipe
		stat_linux.go#L28: 		fs.mode |= ModeSymlink
		stat_linux.go#L32: 		fs.mode |= ModeSocket
		stat_linux.go#L35: 		fs.mode |= ModeSetgid
		stat_linux.go#L38: 		fs.mode |= ModeSetuid
		stat_linux.go#L41: 		fs.mode |= ModeSticky
		types_unix.go#L18: 	mode    FileMode
		types_unix.go#L24: func (fs *fileStat) Mode() FileMode     { return fs.mode }